|
|
|
|
OnControlAdded Method, SftTabs Class |
Raises the ControlAdded event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overrides Sub OnControlAdded( ByVal e As ControlEventArgs ) |
C# |
protected override void OnControlAdded( ControlEventArgs e ); |
C++ |
protected: virtual void OnControlAdded( ControlEventArgs^ e ); |
e
A ControlEventArgs that contains the event data.
Comments
The OnControlAdded method raises the ControlAdded event.
It is called when a child control is added to the control.
Raising an event invokes the event handler through a delegate.
The OnControlAdded method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnControlAdded in a derived class, make sure to call the base class's OnControlAdded method so that registered delegates receive the event.